home *** CD-ROM | disk | FTP | other *** search
- /* arexx Script
- */
-
- options results
- parse ARG Port flag b
-
- ADDRESS value Port
-
- pp_GetWidth
- w=result
-
- pp_GetHeight
- h=result
-
- if w=0 then exit
-
- IF flag=-1 then DO
- pp_FindEmptyBrush
- Brush=result
- if Brush=-1 then DO
- pp_Warn "can't*find*empty|Brush."
- EXIT
- END
- pp_SetBrush Brush
-
- pp_LockPfPaint
- pp_Progresstext "Grab*Picture"
- pp_StencilOn
- pp_PickBrush 0 0 w h 1
- pp_StencilOff
- pp_ProgressClr
- pp_UlockPfPaint
- END
- ELSE DO
- pp_GetCurrentBuffer
- CBf=result
- pp_SetBuffer flag
- pp_GetWidth
- w=result
- pp_GetHeight
- h=result
- pp_LockPfPaint
- pp_Progresstext "Grab*Picture"
- pp_StencilOn
- pp_PickBrush 0 0 w h 1
- pp_StencilOff
- pp_ProgressClr
- pp_UlockPfPaint
- pp_SetBuffer CBf
- END
-
- EXIT
-